home *** CD-ROM | disk | FTP | other *** search
/ PC Media 22 / PC MEDIA CD22.iso / share / prog / datalib2 / field.cpp < prev    next >
C/C++ Source or Header  |  1995-08-14  |  641b  |  31 lines

  1. #include "datapriv.hpp"
  2.  
  3.  
  4. /********************* FIELD FUNCTIONS *************************/
  5.  
  6. // This is the constructor for a field, which is put first
  7. // on a linked list
  8.  
  9. /********************* CONSTRUCTOR *****************************/
  10.  
  11. field::field(int inumber,char *iname,char itype,int ilen,
  12.              int irdp,int irecpos)
  13. {
  14.  number=inumber;
  15.  strncpy(name,iname,10); name[10]=0;
  16.  type=itype;
  17.  len=ilen;
  18.  rdp=irdp;
  19.  
  20.  recpos=irecpos;
  21. }
  22.  
  23. /********************** DESTRUCTOR *****************************/
  24.  
  25. // This is the destructor for a field, which also cleans up the pointers
  26.  
  27. field::~field(void)
  28. {
  29. }
  30.  
  31.